home *** CD-ROM | disk | FTP | other *** search
/ Champak 120 / Vol 120.iso / games / titans / beastboy.swf / scripts / DefineSprite_222 / frame_16 / DoAction.as
Text File  |  2010-11-09  |  228b  |  17 lines

  1. d = 50;
  2. onenterframe = function()
  3. {
  4.    d--;
  5.    if(d < 0)
  6.    {
  7.       _alpha = _alpha - 5;
  8.       if(_alpha <= 0)
  9.       {
  10.          delete onenterframe;
  11.          nextFrame();
  12.          stop();
  13.       }
  14.    }
  15. };
  16. stop();
  17.